home *** CD-ROM | disk | FTP | other *** search
- var helloworld = {
- onLoad: function() {
- // initialization code
- this.initialized = true;
- },
-
- onMenuItemCommand: function() {
- alert("Hello World");
- var myStatusbar=document.getElementById("helloworld-statusHelloworld");
-
- myStatusbar.label="A dynamic Hello World";
-
- var PromptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService();
- PromptService.QueryInterface(Components.interfaces.nsIPromptService);
- PromptService.alert(null, "Hello Extension","Hello World");
- },
-
- };
- window.addEventListener("load", function(e) { helloworld.onLoad(e); }, false);
-